net/http.http2priorityNode.kids (field)

15 uses

	net/http (current package)
		h2_bundle.go#L11707: 	kids       *http2priorityNode // start of the kids list
		h2_bundle.go#L11721: 			parent.kids = n.next
		h2_bundle.go#L11737: 		n.next = parent.kids
		h2_bundle.go#L11742: 		parent.kids = n
		h2_bundle.go#L11763: 	if n.kids == nil {
		h2_bundle.go#L11776: 	w := n.kids.weight
		h2_bundle.go#L11778: 	for k := n.kids.next; k != nil; k = k.next {
		h2_bundle.go#L11785: 		for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11796: 	for n.kids != nil {
		h2_bundle.go#L11797: 		*tmp = append(*tmp, n.kids)
		h2_bundle.go#L11798: 		n.kids.setParent(nil)
		h2_bundle.go#L11804: 	for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11974: 		k := parent.kids
		h2_bundle.go#L12050: 	for n.kids != nil {
		h2_bundle.go#L12051: 		n.kids.setParent(n.parent)